home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-04-22 | 652 b | 30 lines | [TEXT/CWIE] |
- /* -------------------------------------------------------------
- This applet illustrates simple flow control.
-
- Java's classes: Applet (applet)
- System (lang)
-
- Custom classes: IsOdd
-
- ------------------------------------------------------------- */
- public class IsOdd extends java.applet.Applet {
- public void init() {
-
- int i;
-
- for ( i = 1; i <= 20; i++ ) {
- System.out.print( "The number " + i + " is ");
-
- if ( (i % 2) == 0 )
- System.out.print( "even" );
- else
- System.out.print( "odd" );
-
- if ( (i % 3) == 0 )
- System.out.print( " and is a multiple of 3" );
-
- System.out.println("");
-
- }
- }
- }